home *** CD-ROM | disk | FTP | other *** search
/ PC World 1999 October / PCWorld_1999-10_cd1.bin / Software / Servis / X-setup / _SETUP.1 / XQ WinNT AutoLogin Settings.xpl < prev    next >
Text File  |  1999-06-13  |  2KB  |  65 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="1"
  3. "COUNT"="3"
  4. "UIPATH"="Network\Login\Auto Login"
  5. "NAME"="Settings"
  6. "VERSION"="1.52"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="User name"
  9. "TEXT 2"="Password"
  10. "TEXT 3"="Domain"
  11. "DESCRIPTION 1"="Auto login can be used to eliminate the "Press Ctrl+Alt+Del to login" screen."
  12. "DESCRIPTION 2"="Enter your users information here. The value for "Domain" is needed only if you are using a domain, else leave it blank."
  13. "DESCRIPTION 3"="When you are finished, apply your changes and select the "General" plug-in to activate auto logon."
  14. "AUTHOR"="Xteq Systems"
  15. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  16. "COMMENT 1"="For more information, go to http://www.xteq.com or write to TeXHeX@xteq.com."
  17.  
  18.  
  19. sRP="HKLM\Software\Microsoft\Windows NT\CurrentVersion\WinLogon\"
  20. Sub Plugin_Initialize 
  21.  if RegPathExists(sRP) then
  22.   s=RegReadValue(srp&"DefaultUserName")
  23.   SetUIElement 1,s
  24.  
  25.   s=RegReadValue(srp&"DefaultPassword")
  26.   SetUIElement 2,s
  27.  
  28.   s=RegReadValue(srp&"DefaultDomain")
  29.   SetUIElement 3,s
  30.  else
  31.   Disable
  32.  end if
  33. End Sub
  34.  
  35. Sub Plugin_CheckData(ElementIndex)
  36. End Sub
  37.  
  38.  
  39. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  40.  s=GetUIElement(1)
  41.  Call RegWriteValue(srp&"DefaultUserName",s,1)
  42.  
  43.  s=GetUIElement(2)
  44.  Call RegWriteValue(srp&"DefaultPassword",s,1)
  45.  
  46.  s=GetUIElement(3)
  47.  If Len(s)>0 then
  48.   Call RegWriteValue(srp&"DefaultDomain",s,1)
  49.  else
  50.   s=RegReadValue(srp&"DefaultDomain")
  51.  
  52.   if IsNull(s)=false and Len(s)>0 then
  53.      Call RegDeleteValue(srp&"DefaultDomain")
  54.   end if
  55.  end if
  56.  
  57.  Logoff
  58. End Sub
  59.  
  60. Sub Plugin_Terminate 
  61. End Sub
  62.  
  63.  
  64.  
  65.